home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / games / nhak_src.zip / MFNDPOS.H < prev    next >
C/C++ Source or Header  |  1993-03-16  |  1KB  |  26 lines

  1. /*    SCCS Id: @(#)mfndpos.h    3.0    89/11/22
  2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4. /* mfndpos.h - version 1.0.2 */
  5.  
  6. #ifndef MFNDPOS_H
  7. #define MFNDPOS_H
  8.  
  9. #define ALLOW_TRAPS    0x0002FFFFL    /* can enter 18 kinds of traps */
  10. #define ALLOW_U     0x00040000L    /* can attack you */
  11. #define ALLOW_M     0x00080000L    /* can attack other monsters */
  12. #define ALLOW_TM    0x00100000L    /* can attack tame monsters */
  13. #define ALLOW_ALL    (ALLOW_U | ALLOW_M | ALLOW_TM | ALLOW_TRAPS)
  14. #define NOTONL        0x00200000L    /* avoids direct line to player */
  15. #define OPENDOOR    0x00400000L    /* opens closed doors */
  16. #define UNLOCKDOOR    0x00800000L    /* unlocks locked doors */
  17. #define BUSTDOOR    0x01000000L    /* breaks any doors */
  18. #define ALLOW_ROCK    0x02000000L    /* pushes rocks */
  19. #define ALLOW_WALL    0x04000000L    /* walks thru walls */
  20. #define ALLOW_DIG    0x08000000L    /* digs */
  21. #define ALLOW_SANCT    0x20000000L    /* enters temples */
  22. #define ALLOW_SSM    0x40000000L    /* ignores scare monster */
  23. #define NOGARLIC    0x80000000L    /* hates garlic */
  24.  
  25. #endif /* MFNDPOS_H /**/
  26.